home *** CD-ROM | disk | FTP | other *** search
- #
- # Watcom makefile for FROM [Win32]
- # Requires WIL32.DLL & WIL32.LIB
- #
- # To use: "wmake -f from32._w_"
- #
-
- CCFLAGS = -w4 -zq -otexan -d2 -3s -bt=nt -mf -DWIN32
-
- from.exe : about.obj paint.obj from.obj str.obj &
- from.def see32.lib from.res
- wlink d all SYS nt_win op m libr see32.lib op maxe=25 op q op symf &
- @from32.lnk
- wrc -q -ad from.res from.exe
-
- about.obj : about.c
- wcc386 about.c $(CCFLAGS)
-
- paint.obj : paint.c
- wcc386 paint.c $(CCFLAGS)
-
- from.obj : from.c
- wcc386 from.c $(CCFLAGS)
-
- str.obj : str.c
- wcc386 str.c $(CCFLAGS)
-
- from.res : from.rc
- wrc from.rc -bt=nt -q -ad -r -fo=from.res
-